Xamarin.Forms Solutions by Gerald Versluis & Steven Thewissen

Xamarin.Forms Solutions by Gerald Versluis & Steven Thewissen

Author:Gerald Versluis & Steven Thewissen
Language: eng
Format: epub
Publisher: Apress, Berkeley, CA


public MyViewModel()

{

Items = new List<MyGroup>() {

new MyGroup("Items starting with A", "A") {

new MyItem("Aardvark"),

new MyItem("Alpaca")

},

new MyGroup("Items starting with B", "B") {

new MyItem("Barnacle"),

new MyItem("Butterfly")

},

new MyGroup("Items starting with C", "C") {

new MyItem("Chicken"),

new MyItem("Coyote")

}

};

}

...

public class MyItem

{

public string ItemTitle { get; set; }

public MyItem(string title)

{

ItemTitle = title;

}

}

public class MyGroup : List<MyItem>

{

public string Title { get; set; }

public string ShortName { get; set; }



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.